home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-04-27 | 569 b | 29 lines | [TEXT/CWIE] |
- /**\
- |**| Carbon.pch
- \**/
-
- #pragma once
-
- #define TARGET_API_MAC_CARBON 1
- #define ACCESSOR_CALLS_ARE_FUNCTIONS 1
-
- // Support for automatically dealing with debug vs. end-user builds
- #if __POWERPC__
- #if __option (peephole)
- #define __DEBUGBUILD__ 0
- #else
- #define __DEBUGBUILD__ 1
- #endif
- #endif
-
- #if __option(precompile)
- #pragma precompile_target "Carbon_pch"
- #pragma once on
- #pragma check_header_flags on
- #define USE_PRECOMPILED_HEADER true
- // Now just include the "MacHeaders.c" source file
- #include "MacHeaders.c"
- #else
- #include "Carbon_pch"
- #endif
-